testing.common.chatty (field)

68 uses

	testing (current package)
		benchmark.go#L249: 		fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
		benchmark.go#L262: 		if b.chatty != nil && (len(b.output) > 0 || finished) {
		benchmark.go#L264: 			fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
		benchmark.go#L733: 		main.chatty = newChattyPrinter(main.w)
		benchmark.go#L747: 			if b.chatty == nil {
		benchmark.go#L757: 						chatty: b.chatty,
		benchmark.go#L771: 				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L775: 			if b.chatty != nil {
		benchmark.go#L786: 				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L791: 			if b.chatty != nil && b.chatty.json {
		benchmark.go#L792: 				b.chatty.Updatef("", "=== NAME  %s\n", "")
		benchmark.go#L832: 			chatty:  b.chatty,
		benchmark.go#L847: 	if b.chatty != nil {
		benchmark.go#L860: 			if b.chatty.json {
		benchmark.go#L861: 				b.chatty.Updatef(benchName, "=== RUN   %s\n", benchName)
		fuzz.go#L312: 				chatty:    f.chatty,
		fuzz.go#L324: 		if t.chatty != nil {
		fuzz.go#L325: 			t.chatty.Updatef(t.name, "=== RUN   %s\n", t.name)
		fuzz.go#L344: 		if t.chatty != nil && t.chatty.json {
		fuzz.go#L345: 			t.chatty.Updatef(t.parent.name, "=== NAME  %s\n", t.parent.name)
		fuzz.go#L422: 	} else if f.chatty != nil {
		fuzz.go#L500: 				root.chatty = newChattyPrinter(root.w)
		fuzz.go#L525: 						chatty:    root.chatty,
		fuzz.go#L534: 				if f.chatty != nil {
		fuzz.go#L535: 					f.chatty.Updatef(f.name, "=== RUN   %s\n", f.name)
		fuzz.go#L539: 				if f.chatty != nil && f.chatty.json {
		fuzz.go#L540: 					f.chatty.Updatef(f.parent.name, "=== NAME  %s\n", f.parent.name)
		fuzz.go#L580: 		root.chatty = newChattyPrinter(root.w)
		fuzz.go#L611: 			chatty:    root.chatty,
		fuzz.go#L620: 	if f.chatty != nil {
		fuzz.go#L621: 		f.chatty.Updatef(f.name, "=== RUN   %s\n", f.name)
		fuzz.go#L625: 	if f.chatty != nil {
		fuzz.go#L626: 		f.chatty.Updatef(f.parent.name, "=== NAME  %s\n", f.parent.name)
		testing.go#L651: 	chatty         *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.
		testing.go#L832: 	if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
		testing.go#L846: 		c.chatty.Updatef(testName, format, args...)
		testing.go#L850: 		fmt.Fprintf(p.w, c.chatty.prefix()+format, args...)
		testing.go#L1168: 	if !o.c.done && (o.c.chatty != nil) {
		testing.go#L1174: 			o.c.chatty.Printf(o.c.name, "%s%s", indent, b)
		testing.go#L1397: 	if c.chatty != nil {
		testing.go#L1398: 		c.chatty.Updatef(c.name, "=== ARTIFACTS %s %v\n", c.name, dir)
		testing.go#L1613: 	if c.chatty == nil {
		testing.go#L1616: 	c.chatty.Updatef(c.name, "=== ATTR  %s %v %v\n", c.name, key, value)
		testing.go#L1797: 	if t.chatty != nil {
		testing.go#L1798: 		t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
		testing.go#L1807: 	if t.chatty != nil {
		testing.go#L1808: 		t.chatty.Updatef(t.name, "=== CONT  %s\n", t.name)
		testing.go#L2082: 			chatty:     t.chatty,
		testing.go#L2091: 	if t.chatty != nil {
		testing.go#L2092: 		t.chatty.Updatef(t.name, "=== RUN   %s\n", t.name)
		testing.go#L2115: 	if t.chatty != nil && t.chatty.json {
		testing.go#L2116: 		t.chatty.Updatef(t.parent.name, "=== NAME  %s\n", t.parent.name)
		testing.go#L2142: 			chatty:     t.chatty,
		testing.go#L2500: 	} else if t.chatty != nil {
		testing.go#L2581: 				t.chatty = newChattyPrinter(t.w)